:root {
  /* Primitive Color Tokens */
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(0, 0, 0, 1);
  --color-cream-50: rgba(252, 252, 249, 1);
  --color-cream-100: rgba(255, 255, 253, 1);
  --color-gray-200: rgba(245, 245, 245, 1);
  --color-gray-300: rgba(167, 169, 169, 1);
  --color-gray-400: rgba(119, 124, 124, 1);
  --color-slate-500: rgba(98, 108, 113, 1);
  --color-brown-600: rgba(94, 82, 64, 1);
  --color-charcoal-700: rgba(31, 33, 33, 1);
  --color-charcoal-800: rgba(38, 40, 40, 1);
  --color-slate-900: rgba(19, 52, 59, 1);
  --color-teal-300: rgba(50, 184, 198, 1);
  --color-teal-400: rgba(45, 166, 178, 1);
  --color-teal-500: rgba(33, 128, 141, 1);
  --color-teal-600: rgba(29, 116, 128, 1);
  --color-teal-700: rgba(26, 104, 115, 1);
  --color-teal-800: rgba(41, 150, 161, 1);
  --color-red-400: rgba(255, 84, 89, 1);
  --color-red-500: rgba(192, 21, 47, 1);
  --color-orange-400: rgba(230, 129, 97, 1);
  --color-orange-500: rgba(168, 75, 47, 1);

  /* RGB versions for opacity control */
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;
  --color-slate-500-rgb: 98, 108, 113;
  --color-red-500-rgb: 192, 21, 47;
  --color-red-400-rgb: 255, 84, 89;
  --color-orange-500-rgb: 168, 75, 47;
  --color-orange-400-rgb: 230, 129, 97;

  /* Background color tokens (Light Mode) */
  --color-bg-1: rgba(59, 130, 246, 0logo-text08);
  /* Light blue */
  --color-bg-2: rgba(245, 158, 11, 0.08);
  /* Light yellow */
  --color-bg-3: rgba(34, 197, 94, 0.08);
  /* Light green */
  --color-bg-4: rgba(239, 68, 68, 0.08);
  /* Light red */
  --color-bg-5: rgba(147, 51, 234, 0.08);
  /* Light purple */
  --color-bg-6: rgba(249, 115, 22, 0.08);
  /* Light orange */
  --color-bg-7: rgba(236, 72, 153, 0.08);
  /* Light pink */
  --color-bg-8: rgba(6, 182, 212, 0.08);
  /* Light cyan */

  /* Semantic Color Tokens (Light Mode) */
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);
  --color-select-caret: rgba(var(--color-slate-900-rgb), 0.8);

  /* Common style patterns */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for opacity control */
  --color-success-rgb: 33, 128, 141;
  --color-error-rgb: 192, 21, 47;
  --color-warning-rgb: 168, 75, 47;
  --color-info-rgb: 98, 108, 113;

  /* Typography */
  --font-family-base: "FKGroteskNeue", "Geist", "Inter", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-mono: "Berkeley Mono", ui-monospace, SFMono-Regular, Menlo,
    Monaco, Consolas, monospace;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 24px;
  --font-size-4xl: 30px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 550;
  --font-weight-bold: 600;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --letter-spacing-tight: -0.01em;

  /* Spacing */
  --space-0: 0;
  --space-1: 1px;
  --space-2: 2px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-base: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04),
    0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);

  /* Animation */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

/* Dark mode colors */
@media (prefers-color-scheme: dark) {
  :root {
    /* RGB versions for opacity control (Dark Mode) */
    --color-gray-400-rgb: 119, 124, 124;
    --color-teal-300-rgb: 50, 184, 198;
    --color-gray-300-rgb: 167, 169, 169;
    --color-gray-200-rgb: 245, 245, 245;

    /* Background color tokens (Dark Mode) */
    --color-bg-1: rgba(29, 78, 216, 0.15);
    /* Dark blue */
    --color-bg-2: rgba(180, 83, 9, 0.15);
    /* Dark yellow */
    --color-bg-3: rgba(21, 128, 61, 0.15);
    /* Dark green */
    --color-bg-4: rgba(185, 28, 28, 0.15);
    /* Dark red */
    --color-bg-5: rgba(107, 33, 168, 0.15);
    /* Dark purple */
    --color-bg-6: rgba(194, 65, 12, 0.15);
    /* Dark orange */
    --color-bg-7: rgba(190, 24, 93, 0.15);
    /* Dark pink */
    --color-bg-8: rgba(8, 145, 178, 0.15);
    /* Dark cyan */

    /* Semantic Color Tokens (Dark Mode) */
    --color-background: var(--color-charcoal-700);
    --color-surface: var(--color-charcoal-800);
    --color-text: var(--color-gray-200);
    --color-text-secondary: rgba(var(--color-gray-300-rgb), 0.7);
    --color-primary: var(--color-teal-300);
    --color-primary-hover: var(--color-teal-400);
    --color-primary-active: var(--color-teal-800);
    --color-secondary: rgba(var(--color-gray-400-rgb), 0.15);
    --color-secondary-hover: rgba(var(--color-gray-400-rgb), 0.25);
    --color-secondary-active: rgba(var(--color-gray-400-rgb), 0.3);
    --color-border: rgba(var(--color-gray-400-rgb), 0.3);
    --color-error: var(--color-red-400);
    --color-success: var(--color-teal-300);
    --color-warning: var(--color-orange-400);
    --color-info: var(--color-gray-300);
    --color-focus-ring: rgba(var(--color-teal-300-rgb), 0.4);
    --color-btn-primary-text: var(--color-slate-900);
    --color-card-border: rgba(var(--color-gray-400-rgb), 0.2);
    --color-card-border-inner: rgba(var(--color-gray-400-rgb), 0.15);
    --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    --button-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
    --color-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
    --color-select-caret: rgba(var(--color-gray-200-rgb), 0.8);

    /* Common style patterns - updated for dark mode */
    --focus-ring: 0 0 0 3px var(--color-focus-ring);
    --focus-outline: 2px solid var(--color-primary);
    --status-bg-opacity: 0.15;
    --status-border-opacity: 0.25;
    --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

    /* RGB versions for dark mode */
    --color-success-rgb: var(--color-teal-300-rgb);
    --color-error-rgb: var(--color-red-400-rgb);
    --color-warning-rgb: var(--color-orange-400-rgb);
    --color-info-rgb: var(--color-gray-300-rgb);
  }
}

/* Data attribute for manual theme switching */
[data-color-scheme="dark"] {
  /* RGB versions for opacity control (dark mode) */
  --color-gray-400-rgb: 119, 124, 124;
  --color-teal-300-rgb: 50, 184, 198;
  --color-gray-300-rgb: 167, 169, 169;
  --color-gray-200-rgb: 245, 245, 245;

  /* Colorful background palette - Dark Mode */
  --color-bg-1: rgba(29, 78, 216, 0.15);
  /* Dark blue */
  --color-bg-2: rgba(180, 83, 9, 0.15);
  /* Dark yellow */
  --color-bg-3: rgba(21, 128, 61, 0.15);
  /* Dark green */
  --color-bg-4: rgba(185, 28, 28, 0.15);
  /* Dark red */
  --color-bg-5: rgba(107, 33, 168, 0.15);
  /* Dark purple */
  --color-bg-6: rgba(194, 65, 12, 0.15);
  /* Dark orange */
  --color-bg-7: rgba(190, 24, 93, 0.15);
  /* Dark pink */
  --color-bg-8: rgba(8, 145, 178, 0.15);
  /* Dark cyan */

  /* Semantic Color Tokens (Dark Mode) */
  --color-background: var(--color-charcoal-700);
  --color-surface: var(--color-charcoal-800);
  --color-text: var(--color-gray-200);
  --color-text-secondary: rgba(var(--color-gray-300-rgb), 0.7);
  --color-primary: var(--color-teal-300);
  --color-primary-hover: var(--color-teal-400);
  --color-primary-active: var(--color-teal-800);
  --color-secondary: rgba(var(--color-gray-400-rgb), 0.15);
  --color-secondary-hover: rgba(var(--color-gray-400-rgb), 0.25);
  --color-secondary-active: rgba(var(--color-gray-400-rgb), 0.3);
  --color-border: rgba(var(--color-gray-400-rgb), 0.3);
  --color-error: var(--color-red-400);
  --color-success: var(--color-teal-300);
  --color-warning: var(--color-orange-400);
  --color-info: var(--color-gray-300);
  --color-focus-ring: rgba(var(--color-teal-300-rgb), 0.4);
  --color-btn-primary-text: var(--color-slate-900);
  --color-card-border: rgba(var(--color-gray-400-rgb), 0.15);
  --color-card-border-inner: rgba(var(--color-gray-400-rgb), 0.15);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  --color-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
  --color-select-caret: rgba(var(--color-gray-200-rgb), 0.8);

  /* Common style patterns - updated for dark mode */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for dark mode */
  --color-success-rgb: var(--color-teal-300-rgb);
  --color-error-rgb: var(--color-red-400-rgb);
  --color-warning-rgb: var(--color-orange-400-rgb);
  --color-info-rgb: var(--color-gray-300-rgb);
}

[data-color-scheme="light"] {
  /* RGB versions for opacity control (light mode) */
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;

  /* Semantic Color Tokens (Light Mode) */
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);

  /* RGB versions for light mode */
  --color-success-rgb: var(--color-teal-500-rgb);
  --color-error-rgb: var(--color-red-500-rgb);
  --color-warning-rgb: var(--color-orange-500-rgb);
  --color-info-rgb: var(--color-slate-500-rgb);
}

/* Base styles */
html {
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  letter-spacing: var(--letter-spacing-tight);
}

h1 {
  font-size: var(--font-size-4xl);
}

h2 {
  font-size: var(--font-size-3xl);
}

h3 {
  font-size: var(--font-size-2xl);
}

h4 {
  font-size: var(--font-size-xl);
}

h5 {
  font-size: var(--font-size-lg);
}

h6 {
  font-size: var(--font-size-md);
}

p {
  margin: 0 0 var(--space-16) 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

a:hover {
  color: var(--color-primary-hover);
}

code,
pre {
  font-family: var(--font-family-mono);
  font-size: calc(var(--font-size-base) * 0.95);
  background-color: var(--color-secondary);
  border-radius: var(--radius-sm);
}

code {
  padding: var(--space-1) var(--space-4);
}

pre {
  padding: var(--space-16);
  margin: var(--space-16) 0;
  overflow: auto;
  border: 1px solid var(--color-border);
}

pre code {
  background: none;
  padding: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-16);
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  border: none;
  text-decoration: none;
  position: relative;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
}

.btn--primary:hover {
  background: transparent;
  border: 2px solid #ff895d;
  color: #ff895d;
}

.btn--primary:active {
  background: var(--color-primary-active);
}

.btn--secondary {
  background: var(--color-secondary);
  color: var(--color-text);
}

.btn--secondary:hover {
  background: var(--color-secondary-hover);
}

.btn--secondary:active {
  background: var(--color-secondary-active);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.btn--outline:hover {
  background: var(--color-secondary);
}

.btn--sm {
  padding: var(--space-4) var(--space-12);
  font-size: var(--font-size-sm);
  border-radius: var(--radius-sm);
}

.btn--lg {
  padding: var(--space-10) var(--space-20);
  font-size: var(--font-size-lg);
  border-radius: var(--radius-md);
}

.btn--full-width {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Form elements */
.form-control {
  display: block;
  width: 100%;
  padding: var(--space-8) var(--space-12);
  font-size: var(--font-size-md);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-base);
  transition: border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

textarea.form-control {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
}

select.form-control {
  padding: var(--space-8) var(--space-12);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: var(--select-caret-light);
  background-repeat: no-repeat;
  background-position: right var(--space-12) center;
  background-size: 16px;
  padding-right: var(--space-32);
}

/* Add a dark mode specific caret */
@media (prefers-color-scheme: dark) {
  select.form-control {
    background-image: var(--select-caret-dark);
  }
}

/* Also handle data-color-scheme */
[data-color-scheme="dark"] select.form-control {
  background-image: var(--select-caret-dark);
}

[data-color-scheme="light"] select.form-control {
  background-image: var(--select-caret-light);
}

.form-control:focus {
  border-color: var(--color-primary);
  outline: var(--focus-outline);
}

.form-label {
  display: block;
  margin-bottom: var(--space-8);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.form-group {
  margin-bottom: var(--space-16);
}

/* Card component */
.card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--duration-normal) var(--ease-standard);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card__body {
  padding: var(--space-16);
}

.card__header,
.card__footer {
  padding: var(--space-16);
  border-bottom: 1px solid var(--color-card-border-inner);
}

/* Status indicators - simplified with CSS variables */
.status {
  display: inline-flex;
  align-items: center;
  padding: var(--space-6) var(--space-12);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.status--success {
  background-color: rgba(
    var(--color-success-rgb, 33, 128, 141),
    var(--status-bg-opacity)
  );
  color: var(--color-success);
  border: 1px solid
    rgba(var(--color-success-rgb, 33, 128, 141), var(--status-border-opacity));
}

.status--error {
  background-color: rgba(
    var(--color-error-rgb, 192, 21, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-error);
  border: 1px solid
    rgba(var(--color-error-rgb, 192, 21, 47), var(--status-border-opacity));
}

.status--warning {
  background-color: rgba(
    var(--color-warning-rgb, 168, 75, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-warning);
  border: 1px solid
    rgba(var(--color-warning-rgb, 168, 75, 47), var(--status-border-opacity));
}

.status--info {
  background-color: rgba(
    var(--color-info-rgb, 98, 108, 113),
    var(--status-bg-opacity)
  );
  color: var(--color-info);
  border: 1px solid
    rgba(var(--color-info-rgb, 98, 108, 113), var(--status-border-opacity));
}

/* Container layout */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-16);
  padding-left: var(--space-16);
}

@media (min-width: 640px) {
  .container {
    max-width: var(--container-sm);
  }
}

@media (min-width: 768px) {
  .container {
    max-width: var(--container-md);
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: var(--container-lg);
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: var(--container-xl);
  }
}

/* Utility classes */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: var(--space-4);
}

.gap-8 {
  gap: var(--space-8);
}

.gap-16 {
  gap: var(--space-16);
}

.m-0 {
  margin: 0;
}

.mt-8 {
  margin-top: var(--space-8);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.mx-8 {
  margin-left: var(--space-8);
  margin-right: var(--space-8);
}

.my-8 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}

.p-0 {
  padding: 0;
}

.py-8 {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.px-8 {
  padding-left: var(--space-8);
  padding-right: var(--space-8);
}

.py-16 {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.px-16 {
  padding-left: var(--space-16);
  padding-right: var(--space-16);
}

.block {
  display: block;
}

.hidden {
  display: none;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

/* Dark mode specifics */
[data-color-scheme="dark"] .btn--outline {
  border: 1px solid var(--color-border-secondary);
}

/* END PERPLEXITY DESIGN SYSTEM */
/* Custom styles for YourAdsmate website */

/* Additional variables for the orange/black theme */
:root {
  --primary-orange: #ff6b35;
  --primary-orange-hover: #ff5722;
  --primary-orange-light: rgba(255, 107, 53, 0.1);
  --primary-black: #1a1a1a;
  --skin-bg: #f5f4f0;
  --dark-gray: #2c2c2c;
  --light-gray: #f8f8f8;
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-orange) 0%,
    #ff8a65 100%
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--primary-black) 0%,
    var(--dark-gray) 100%
  );
  --shadow-orange: 0 10px 30px rgba(255, 107, 53, 0.2);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Override design system colors for orange theme */
:root {
  --color-background: var(--skin-bg);
  --color-surface: var(--color-white);
  --color-primary: var(--primary-orange);
  --color-primary-hover: var(--primary-orange-hover);
  --color-text: var(--primary-black);
  --color-text-secondary: #666666;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", var(--font-family-base);
  background-color: var(--skin-bg);
  color: var(--primary-black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  animation: float 3s ease-in-out infinite;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 28px;
  text-decoration: none;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
  z-index: 999;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: white;
  box-shadow: var(--shadow-md);
}

.logo-white {
    display: block !important;
}

.logo-dark {
  display: block !important;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-20);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.nav-logo a {
  display: flex;
  align-items: center;
  height: 100%;
}

.company-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.logo-text {
  position: relative;
  top: -10px;
  color: var(--primary-orange);
  font-size: 2rem;
}

.logo-accent {
  color: var(--primary-orange);
}

.nav-menu {
  display: flex;
  gap: var(--space-32);
  align-items: center;
}

.nav-link {
  color: var(--primary-black);
  text-decoration: none;
  font-size: 1.2vw;
  font-weight: var(--font-weight-medium);
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-orange);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-orange);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-black);
  transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Sections */
section {
  padding: 80px 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-20);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: #ff6b35 ;
  margin-bottom: var(--space-16);
}

.section-header p {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.service-btn {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: var(--transition-smooth);
}

.service-btn:hover {
  color: var(--primary-orange-hover);
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--primary-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: var(--transition-smooth);
}

.team-photo {
  background: var(--primary-orange);
  color: white;
}

.team-photo i {
  font-size: 3rem;
  color: var(--primary-orange);
  transition: var(--transition-smooth);
}

.team-photo i {
  color: white;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
}

/* Swiper customization */
.swiper-pagination-bullet {
  background: var(--primary-orange) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-orange) !important;
}

/* Contact Section */
.contact {
  background: var(--skin-bg);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-32);
  align-items: start;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 730px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form-wrapper {
  background: var(--color-white);
  padding: var(--space-32);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-form {
  margin-bottom: var(--space-32);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
}

.form-group {
  margin-bottom: var(--space-16);
}

.form-label {
  display: block;
  margin-bottom: var(--space-8);
  font-weight: var(--font-weight-medium);
  color: var(--primary-black);
}

.form-control {
  width: 100%;
  padding: var(--space-12) var(--space-16);
  border: 2px solid #e5e5e5;
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  transition: var(--transition-smooth);
  background: var(--color-white);
}

.form-control:focus {
  border-color: var(--primary-orange);
  outline: none;
  box-shadow: 0 0 0 3px var(--primary-orange-light);
}

.contact-info {
  border-top: 1px solid #e5e5e5;
  padding-top: var(--space-16);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-16);
  margin-bottom: var(--space-10);
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: var(--primary-orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  font-size: var(--font-size-lg);
}

.contact-item h4 {
  color: var(--primary-black);
  margin-bottom: var(--space-4);
}

.contact-item p {
  color: var(--color-text-secondary);
  margin: 0;
}

/* Footer */
.footer {
  background: var(--primary-black);
  color: var(--color-white);
  padding: 20px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-32);
  margin-bottom: var(--space-32);
}

.footer-section h3 {
  color: var(--color-white);
  margin-bottom: var(--space-20);
  font-size: var(--font-size-xl);
}

.footer-section p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: var(--space-20);
}

.social-links {
  display: flex;
  gap: var(--space-12);
}

.social-links a {
  width: 45px;
  height: 45px;
  background: var(--dark-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: var(--transition-smooth);
}

.social-links a:hover {
  background: var(--primary-orange);
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-8);
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--primary-orange);
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  color: #cccccc;
}

.contact-details i {
  color: var(--primary-orange);
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid var(--dark-gray);
  padding: var(--space-20) 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-16);
}

.footer-legal {
  display: flex;
  gap: var(--space-20);
}

.footer-legal a {
  color: #cccccc;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-legal a:hover {
  color: var(--primary-orange);
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-20);
}

.modal.hidden {
  display: none;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  width: 100%;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.3s ease-out;
}

.modal-header {
  text-align: center;
  padding: var(--space-32) var(--space-32) var(--space-16);
}

.modal-header i {
  font-size: 4rem;
  color: #10b981;
  margin-bottom: var(--space-16);
}

.modal-header h3 {
  color: var(--primary-black);
  font-size: var(--font-size-2xl);
}

.modal-body {
  padding: 0 var(--space-32) var(--space-24);
  text-align: center;
}

.modal-body p {
  color: var(--color-text-secondary);
  margin: 0;
}

.modal-footer {
  padding: 0 var(--space-32) var(--space-32);
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .nav-link {
    font-size: 2rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: var(--space-20);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .company-logo {
    height: 40px;
  }

  .hamburger {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float a {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
        .hero-right {
          margin-top: 40px;
          height: auto;
          width: 90%;
          margin-left: auto;
          margin-right: auto;
        }

  .nav-container {
    padding: 0 var(--space-16);
  }

  .container {
    padding: 0 var(--space-16);
  }

  .nav-link {
    font-size: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-buttons .btn {
    flex: 1;
    min-width: 140px;
  }

  section {
    padding: 60px 0;
  }

  .contact-form-wrapper {
    padding: var(--space-20);
  }
}

/* Animation classes for scroll effects */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease-out;
}

.animate-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease-out;
}

.animate-right.animated {
  opacity: 1;
  transform: translateX(0);
}

/* Utility classes */
.text-center {
  text-align: center;
}

.text-orange {
  color: var(--primary-orange);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-orange-light {
  background-color: var(--primary-orange-light);
}

/* Button enhancements */
.btn {
  position: relative;
  overflow: hidden;
  font-weight: var(--font-weight-medium);
  transition: var(--transition-smooth);
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn--primary {
  background: var(--gradient-primary);
  border: none;
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
}

.btn--outline:hover {
  background: var(--primary-orange);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Loading spinner */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--color-white);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

svg{
  background-color:transparent;
}/* --- Extracted Inline Styles --- */
.hero-bg-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; filter: blur(5px); }
.hero-title-accent { color: #FF6B35; }
.swiper-work-padding { padding-bottom: 3rem; padding-left: 1rem; padding-right: 1rem; }
.iframe-map { border: 0; }
.modal-content-center { text-align: center; }
.modal-header-center { justify-content: center; position: relative; }
.modal-check-icon { color: #4CAF50; font-size: 3rem; display: block; margin-bottom: 10px; margin: 0 auto; }
.modal-title-margin { margin-top: 15px; }
.modal-close-btn { position: absolute; top: -10px; right: 0px; background: none; border: none; font-size: 24px; cursor: pointer; }
.modal-text-margin { margin-bottom: 15px; }
.modal-text-sub { font-weight: 500; font-size: 0.9em; color: #555; }
.modal-footer-center { justify-content: center; margin-top: 20px; }
.modal-whatsapp-btn { background-color: #25D366; display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; max-width: 300px; margin: 0 auto; }
.modal-whatsapp-btn-alt { background-color: #25D366; display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; max-width: 300px; margin: 0 auto; }
.modal-whatsapp-icon { font-size: 1.2em; }
.bg-violet { background-color: violet; }
    :root {
      --color-white: #ffffff;
      --color-orange: #FF8157;
      --color-dark: #1A1A1A;
      --color-gray-bg: #f9fafb;
      /* tailwind gray-50 */
      --color-text-gray: #4b5563;
      /* tailwind gray-600 */
      --font-main: 'Outfit', sans-serif;
      --container-padding-mobile: 1.5rem;
      --container-padding-desktop: 5rem;
      /* approx px-20 */
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: var(--font-main);
      background-color: var(--color-white);
      color: var(--color-dark);
      overflow-x: hidden;
      line-height: 1.5;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    /* --- 2. UTILITY & ANIMATION CLASSES --- */

    /* Lenis Smooth Scroll */
    html.lenis {
      height: auto;
    }

    .lenis.lenis-smooth {
      scroll-behavior: auto;
    }

    .lenis.lenis-smooth [data-lenis-prevent] {
      overscroll-behavior: contain;
    }

    .lenis.lenis-stopped {
      overflow: hidden;
    }

    /* --- 3. BUTTONS --- */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background-color: var(--color-orange);
      color: var(--color-white);
      padding: 0.8rem 1.8rem;
      border-radius: 9999px;
      font-weight: 500;
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover {
      transform: translateX(5px);
      background-color: #BF5526;
      color: #ffffff;
    }

    .btn-cta {
      display: inline-block;
      padding: 1rem 2.5rem;
      background-color: var(--color-orange);
      color: var(--color-white);
      border-radius: 9999px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      transition: all 0.3s ease;
    }

    .btn-cta:hover {
      background-color: var(--color-white);
      color: var(--color-orange);
    }

    /* --- 4. SECTIONS --- */

    /* General Section Padding */
    section {
      width: 100%;
      padding: 5rem var(--container-padding-desktop);
      /* Desktop padding */
    }

    @media (max-width: 1024px) {
      section {
        padding: 4rem var(--container-padding-mobile);
        /* Mobile padding */
      }
    }

    body {
      overflow-x: hidden;
    }

    /* HERO SECTION */
    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 2.5rem;
      position: relative;
      background-repeat: no-repeat;
      background-size: cover;
    }

    .hero-left {
      width: 50%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      z-index: 10;
      margin-top: 65px;
    }

    .hero-tag {
      color: #FF6B35;
      font-weight: 500;
      letter-spacing: 0.05em;
      margin-bottom: 1rem;
      font-size: 1.3rem;
      text-transform: uppercase;
    }

    .hero-title {
      font-size: 4.5rem;
      
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 1.5rem;
      line-height: 1.1;
    }

    /* Line break only visible on laptop/desktop */
    .hero-title-break {
      display: block;
    }

    .hero-desc {
      font-size: 1.22rem;
      color: #fff;
      margin-bottom: 2rem;
      max-width: 28rem;
    }

    .hero-right {
      width: 50%;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      z-index: 2;
    }

    .laptop-wrapper {
      width: 90%;
      max-width: 480px;
      animation: floatImage 4s ease-in-out infinite;
    }

    .laptop-wrapper img {
      width: 100%;
      height: auto;
      display: block;
    }

    @keyframes floatImage {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-14px); }
    }

    .laptop-frame {
      position: relative;
      background: transparent;
      width: 100%;
    }

    .laptop-frame img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .laptop-frame img:hover {
      opacity: 1;
    }

    .laptop-base {
      display: none;
    }

    /* Responsive Hero */
    @media (max-width: 1024px) {
      #hero {
          flex-direction: column;
          justify-content: center;
          padding-top: 6rem;
          padding-bottom: 2rem;
        }

      .hero-left,
      .hero-right {
        width: 100%;
      }

      .hero-right {
        justify-content: center;
        margin-top: 2rem;
      }

      .laptop-wrapper {
        width: 75%;
        max-width: 320px;
        margin: 0 auto;
      }

      .hero-title {
        font-size: 2.25rem;
      }

      /* Hide the line break on tablet — title flows naturally */
      .hero-title-break {
        display: none;
      }
    }

    @media (max-width: 640px) {
      .laptop-wrapper {
        width: 80%;
        max-width: 270px;
      }

      /* Hide the line break on mobile too */
      .hero-title-break {
        display: none;
      }
    }

    /* INTRO SECTION (#section-2) */
    #section-2 {
      background-color: var(--color-gray-bg);
    }

    .intro-container {
      display: flex;
      flex-direction: row;
      gap: 4rem;
      align-items: center;
    }

    .intro-left {
      width: 50%;
      display: flex;
      flex-direction: column;
    }

    .intro-title {
      font-size: 2.8rem;
      
      font-weight: 700;
      color: var(--color-dark);
      line-height: 1.3;
    }

    .intro-text {
      color: var(--color-text-gray);
      line-height: 1.625;
      font-size: 1.3rem;
      text-align: justify;
    }

    .intro-highlight {
      border-left: 4px solid var(--color-orange);
      padding-left: 1rem;
      font-weight: 500;
      color: var(--color-text-gray);
    }

    .intro-right {
      width: 45%;
    }

    .intro-img-wrapper {
      position: relative;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      animation: float 3s ease-in-out infinite;
    }

    .intro-img-wrapper img {
      width: 100%;
      height: auto;
      transform: scale(1);
      transition: transform 0.7s ease;
    }

    .intro-img-wrapper img:hover {
      transform: scale(1.05);
    }

    @media (max-width: 1024px) {
      .intro-container {
        flex-direction: column;
      }

      .intro-left,
      .intro-right {
        width: 100%;
      }

      .intro-title {
        font-size: 1.875rem;
      }
    }

    /* SERVICES SECTION (#section-3) */
    #section-3 {
      background-color: var(--color-white);
    }

    .services-container {
      display: flex;
      flex-direction: row;
      gap: 4rem;
    }

    .services-left {
      width: 41.66%;
      /* 5/12 */
      height: fit-content;
    }

    /* Sticky behavior for desktop */
    @media (min-width: 1024px) {
      .services-left {
        position: sticky;
        top: 6rem;
      }
    }

    .services-title {
      font-size: 2.5rem;
      
      font-weight: 700;
      color: var(--color-dark);
      line-height: 1.2;
      margin-bottom: 2rem;
    }

    .services-desc {
      font-size: 1.125rem;
      color: var(--color-text-gray);
    }

    .services-img-box {
      border-radius: 0.75rem;
      overflow: hidden;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      margin-top: 2rem;
      animation: float 3s ease-in-out infinite;
    }

    .services-img-box img {
      width: 100%;
      height: 50%;
      object-fit: cover;
    }

    .services-right {
      width: 58.33%;
      /* 7/12 */
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .services-header {
      margin-bottom: 1rem;
    }

    .services-label {
      color: var(--color-orange);
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-size: 1.875rem;
      margin-bottom: 0.5rem;
      display: block;
    }

    .services-line {
      height: 4px;
      width: 5rem;
      background-color: var(--color-dark);
    }

    .service-card {
      background-color: var(--color-gray-bg);
      padding: 2rem;
      border-radius: 0.75rem;
      border-left: 4px solid transparent;
    }

    .service-card:hover {
      transform: translateY(-5px);
      border-left: 4px solid var(--color-orange);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .service-icon {
      color: var(--color-orange);
      font-size: 2.25rem;
      margin-bottom: 1rem;
    }

    .service-card h1 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-dark);
      margin-bottom: 0.75rem;
    }

    .service-card p {
      color: var(--color-text-gray);
      line-height: 1.625;
    }

    @media (max-width: 1024px) {
      .services-container {
        flex-direction: column;
      }

      .services-left,
      .services-right {
        width: 100%;
      }

      .services-title {
        font-size: 2rem;
      }
    }

    /* SHOWCASE SECTION (#section-4) */
    #section-4 {
      background-color: var(--color-dark);
      color: var(--color-white);
      padding-bottom: 5rem;
    }

    .showcase-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .showcase-title {
      font-size: 3rem;
      font-weight: 700;
      color: var(--color-white);
    }

    .showcase-subtitle {
      color: #9ca3af;
      /* gray-400 */
      margin-top: 1rem;
    }

    .swiper-slide img {
      border-radius: 0.5rem;
      width: 100%;
      display: block;
    }

    .swiper-slide:hover {
      transform: scale(1.05);
      transition: transform 0.3s ease-in-out;
    }

    /* Swiper Nav Buttons Customization */
    .swiper-button-next,
    .swiper-button-prev {
      color: var(--color-orange) !important;
      background: rgba(255, 255, 255, 0.9);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
      font-size: 20px !important;
      font-weight: 700;
      color: var(--color-orange, #E8793A) !important;
    }
    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      background: var(--color-orange, #E8793A) !important;
      box-shadow: 0 6px 16px rgba(232, 121, 58, 0.4);
      transform: scale(1.1);
    }
    .swiper-button-next:hover:after,
    .swiper-button-prev:hover:after {
      color: #fff !important;
    }

    @media (max-width: 768px) {
      .showcase-title {
        font-size: 2.25rem;
      }
    }

    .clients-section {
      padding: var(--section-padding) 0;
      background-color: #F5F5F5;
    }

    .client-container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 40px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-header h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--color-black);
    }

    @media (max-width: 1024px) {
      .section-header h2 {
        font-size: 2rem;
      }
    }

    @media (max-width: 768px) {
      .section-header h2 {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 480px) {
        .hero-right {
          margin-top: 40px;
          height: auto;
          width: 90%;
          margin-left: auto;
          margin-right: auto;
        }

      .section-header h2 {
        font-size: 1.6rem;
      }

      .intro-title {
        font-size: 1.4rem;
        font-weight: 700;
      }

      .laptop-frame img {
        width: 100%;
        height: auto;
        object-fit: contain;
      }

      .hero-desc {
        font-size: 1.03rem;
      }

      .hero-tag {
        font-size: 1rem;
      }

      .hero-left {
        margin-top: 76px;
      }

      .hero-right {
        margin-top: 0px;
        height: auto;
      }
    }

    .section-header p {
      font-size: 1.1rem;
      color: var(--color-text-gray);
      max-width: 700px;
      margin: 0 auto;
    }

    .clients-swiper {
      padding: 20px 0;
    }

    .client-item {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background-color: var(--color-white);
      border: 1px solid #e8e8e8;
      border-radius: 10px;
      height: 100px;
      transition: all 0.3s ease;
    }

    .client-item:hover {
      border-color: var(--color-orange);
      transform: translateY(-3px);
    }

    .client-item img {
      max-width: 100%;
      max-height: 100px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.6;
      transition: all 0.3s ease;
    }

    .client-item:hover img {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* CLIENT SECTION (Partially custom CSS in original, cleaned up here) */
    .section-client {
      width: 100%;
      min-height: 60vh;
      background-color: var(--color-white);
      padding: 100px 0;
    }

    .section-title {
      font-size: 3rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 30px;
      color: var(--color-dark);
    }

    .section-subtitle {
      font-size: 1.25rem;
      text-align: center;
      margin-bottom: 60px;
      color: var(--color-dark);
      opacity: 0.8;
    }

    .client-carousel-wrapper {
      position: relative;
    }

    .client-carousel-wrapper::before,
    .client-carousel-wrapper::after {
      content: '';
      position: absolute;
      top: 0;
      width: 150px;
      height: 100%;
      z-index: 2;
      pointer-events: none;
    }

    .client-carousel-wrapper::before {
      left: 0;
      background: linear-gradient(to right, var(--color-white), transparent);
    }

    .client-carousel-wrapper::after {
      right: 0;
      background: linear-gradient(to left, var(--color-white), transparent);
    }

    .client-swiper {
      width: 100%;
    }

    .client-logo {
      width: 100%;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background-color: var(--color-white);
      border: 1px solid rgba(26, 26, 26, 0.1);
      border-radius: 10px;
      transition: all 0.3s ease;
    }

    .client-logo:hover {
      border-color: var(--color-orange);
      transform: translateY(-5px);
    }

    .client-logo img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.6;
      transition: all 0.3s ease;
    }

    .client-logo:hover img {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* WHY US SECTION (#why-us) */
    #why-us {
      background-color: var(--color-white);
    }

    .why-container {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 4rem;
    }

    .why-left {
      width: 50%;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .why-label {
      color: var(--color-orange);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .why-title {
      font-size: 2.8rem;
      
      font-weight: 700;
      color: var(--color-dark);
      line-height: 1.2;
    }

    .why-desc {
      color: var(--color-text-gray);
      line-height: 1.625;
      text-align: justify;
      font-size: 1.1rem;
    }

    .why-right {
      width: 50%;
    }

    .why-img-box {
      position: relative;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
      animation: float 3s ease-in-out infinite;
    }

    .why-img-box img {
      width: 100%;
      height: auto;
      transition: transform 0.7s ease;

    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-20px);
      }
    }

    .why-img-box img:hover {
      transform: scale(1.1);
    }

    @media (max-width: 1024px) {
      .why-container {
        flex-direction: column;
      }

      .why-left,
      .why-right {
        width: 100%;
      }
    }

    /* FAQ SECTION (#faq) */
    #faq {
      background-color: var(--color-gray-bg);
    }

    .faq-container {
      max-width: 56rem;
      /* 4xl */
      margin: 0 auto;
    }

    .faq-main-title {
      font-size: 2.25rem;
      font-weight: 700;
      text-align: center;
      color: var(--color-dark);
      margin-bottom: 3rem;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .faq-item {
      background-color: var(--color-white);
      border-radius: 0.5rem;
      box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      overflow: hidden;
      cursor: pointer;
    }

    .faq-question {
      padding: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-question h3 {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--color-dark);
      padding-right: 2rem;
    }

    .faq-icon {
      color: var(--color-orange);
      transition: transform 0.3s ease;
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease-out, padding 0.3s ease;
      background-color: var(--color-gray-bg);
      color: var(--color-text-gray);
    }

    .faq-answer-content {
      padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      transition: max-height 0.5s ease-in;
    }

    /* CTA SECTION */
    #cta {
      background-color: var(--color-dark);
      color: var(--color-white);
      text-align: center;
      padding-top: 6rem;
      padding-bottom: 6rem;
    }

    .cta-title {
      font-size: 2.25rem;
      
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: white;
    }

    .cta-subtitle {
      color: #9ca3af;
      font-size: 1.125rem;
      margin-bottom: 2.5rem;
    }

    @media (min-width: 1024px) {
      .cta-title {
        font-size: 3rem;
      }
    }

    /* Responsive Text Adjustments */
    @media (max-width: 1024px) {
      .section-title {
        font-size: 2.5rem;
      }

      #hero {
        flex-direction: row;
        min-height: 0vh;
      }
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
      }

      .section-subtitle {
        font-size: 1rem;
      }

      .why-title {
        font-size: 1.9rem;
      }

      .why-desc {
        font-size: 0.9rem;
      }

      .intro-text {
        font-size: 1rem;
      }

    }

    @media (max-width: 480px) {
        .hero-right {
          margin-top: 40px;
          height: auto;
          width: 90%;
          margin-left: auto;
          margin-right: auto;
        }

      .section-title {
        font-size: 1.75rem;
      }

      #hero {
        min-height: 0vh;
        flex-direction: column;
      }
    }

    /* Footer */
    .footer {
  background: var(--primary-black);
  color: var(--color-white);
  padding: 20px 0 0;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: var(--space-32);
      margin-bottom: var(--space-32);
    }

    .footer-section h3 {
      color: var(--color-white);
      margin-bottom: var(--space-20);
      font-size: var(--font-size-xl);
    }

    .footer-section p {
      color: #cccccc;
      line-height: 1.6;
      margin-bottom: var(--space-20);
    }

    .logo-text {
      position: relative;
      top: -10px;
      color: var(--primary-orange);
      font-size: 2rem;
    }

    .logo-accent {
      color: var(--primary-orange);
    }

    .social-links {
      display: flex;
      gap: var(--space-12);
    }

    .social-links a {
      width: 45px;
      height: 45px;
      background: var(--dark-gray);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-white);
      transition: var(--transition-smooth);
    }

    .social-links a:hover {
      background: var(--primary-orange);
      transform: translateY(-2px);
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: var(--space-8);
    }

    .footer-links a {
      color: #cccccc;
      text-decoration: none;
      transition: var(--transition-smooth);
    }

    .footer-links a:hover {
      color: var(--primary-orange);
    }

    .footer-bottom {
      border-top: 1px solid var(--dark-gray);
      padding: var(--space-20) 0;
    }

    .footer-bottom-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: var(--space-16);
    }

    .footer-legal {
      display: flex;
      gap: var(--space-20);
    }

    .footer-legal a {
      color: #cccccc;
      text-decoration: none;
      transition: var(--transition-smooth);
    }

    .footer-legal a:hover {
      color: var(--primary-orange);
    }

    .contact-details p {
      display: flex;
      align-items: center;
      gap: var(--space-8);
      margin-bottom: var(--space-8);
      color: #cccccc;
    }

    .contact-details i {
      color: var(--primary-orange);
      width: 20px;
    }

    /* Container layout */
    .container {
      width: 100%;
      margin-right: auto;
      margin-left: auto;
      padding-right: var(--space-16);
      padding-left: var(--space-16);
    }

    @media (min-width: 640px) {
      .container {
        max-width: var(--container-sm);
      }
    }

    @media (min-width: 768px) {
      .container {
        max-width: var(--container-md);
      }
    }

    @media (min-width: 1024px) {
      .container {
        max-width: var(--container-lg);
      }
    }

    @media (min-width: 1280px) {
      .container {
        max-width: var(--container-xl);
      }
    }
/* Mega Menu Global Styles */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: max-content;
  background: #FFFFFF;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  border-radius: 20px;
  padding: 32px 64px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

/* Services Arrow Rotation FIXED (Aggressive Specificity) */
.navbar .nav-container #navMenu .nav-dropdown > .nav-link i.fa-chevron-down,
.navbar .nav-container .nav-menu .nav-dropdown > .nav-link i.fa-chevron-down,
.nav-container .nav-menu .nav-dropdown > .nav-link i.fa-chevron-down {
  transition: transform 0.3s ease !important;
  margin-left: 5px !important;
  font-size: 0.82em !important;
  display: inline-block !important;
  transform: rotate(0deg) !important; /* Forces POINTING DOWN */
  animation: none !important;
}

.navbar .nav-container #navMenu .nav-dropdown.active > .nav-link i.fa-chevron-down,
.navbar .nav-container .nav-menu .nav-dropdown.active > .nav-link i.fa-chevron-down,
.nav-container .nav-menu .nav-dropdown.active > .nav-link i.fa-chevron-down,
.navbar .nav-container #navMenu .nav-dropdown:hover > .nav-link i.fa-chevron-down {
  transform: rotate(180deg) !important; /* Forces POINTING UP */
}

.mobile-menu-header {
  display: none;
}

.hamburger {
  display: none;
}

.nav-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-container {
  display: grid;
  grid-template-columns: max-content max-content; gap: 48px;
  align-items: start;
}

.mega-column h3 {
  font-size: 1.1rem;
  color: #ff6b35; /* Primary Orange */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mega-item {
  display: block;
  color: #1a1a1a; /* Primary Black */
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  text-decoration: none;
}

.mega-item:last-child {
  border-bottom: none;
}

.mega-item:hover {
  color: #ff6b35;
  padding-left: 10px;
  background: rgba(255, 107, 53, 0.05);
}

.mega-image { display: none !important;
  height: 100%;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
}

.mega-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.mega-image:hover img {
  transform: scale(1.05);
}

/* Mobile responsive menu */
@media (max-width: 991px) {
  .nav-dropdown {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    text-align: center;
  }

  .mega-menu {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transform: translateX(-20px) scale(0.98); /* Minimal slide + scale */
    transform-origin: left top;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), 
                opacity 0.3s ease, 
                max-height 0.4s ease;
    box-sizing: border-box;
    z-index: 10;
  }

  .nav-dropdown.active .mega-menu {
    opacity: 1;
    visibility: visible;
    max-height: 2000px; 
    transform: translateX(0) scale(1) !important;
    margin-top: 10px !important;
    padding: 15px 10px !important;
    background: rgba(255, 107, 53, 0.05) !important;
    border-radius: 12px;
    position: static !important; 
  }

  .mega-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

      .mega-image { display: none !important;
      display: block !important;
      width: 100% !important;
      height: 250px !important;
      min-height: 250px !important;
      margin-top: 15px !important;
      border-radius: 12px !important;
      overflow: hidden !important;
    }

  .mega-column {
    padding-left: 20px;
    border-left: 3px solid #ff6b35; /* Stronger accent line */
    margin-bottom: 20px;
  }

  .mega-column h3 {
    margin-bottom: 10px;
    font-size: 1rem;
  }

    /* Hamburger Menu Global Styles */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
        z-index: 2005; /* Always on top of the menu */
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #1A1A1A;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Handled by global Services Arrow Rotation above */

    /* Mobile Menu Drawer Header */
    .mobile-menu-header {
        display: none;
    }

    .mobile-logo {
        display: none;
        height: 40px;
        width: auto;
    }

    .mobile-close {
        display: none;
    }

            .nav-menu {
        position: fixed !important;
        top: 90px !important; /* Full screen top */
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important; /* Full width as requested */
        height: calc(100vh - 90px) !important;
        background: #ffffff !important;
        flex-direction: column;
        padding: 50px 30px 80px 30px !important; /* Increased bottom padding for safety */
        gap: 15px;
        transform: translateX(100%) !important; /* Completely off-screen to the right */
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        z-index: 2000; /* High z-index */
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        overscroll-behavior-y: contain !important;
        box-sizing: border-box !important;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-menu.active {
        transform: translateX(0) !important; /* Slide in from the right */
    }

        .nav-link {
        font-size: 1.5rem !important;
        width: 100% !important;
        text-align: center;
        padding: 10px 0;
        color: #1a1a1a !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Minimal staggered item animation */
    .mega-item {
        opacity: 0;
        transform: translateX(-15px);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-dropdown.active .mega-item {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-dropdown.active .mega-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-dropdown.active .mega-item:nth-child(2) { transition-delay: 0.15s; }
    .nav-dropdown.active .mega-item:nth-child(3) { transition-delay: 0.2s; }
    .nav-dropdown.active .mega-item:nth-child(4) { transition-delay: 0.25s; }
    .nav-dropdown.active .mega-item:nth-child(n+5) { transition-delay: 0.3s; }
}

/* --- GIANT FOOTER HERO TEXT GLOW --- */
/* Shery JS mouse follower size override - HIDDEN AS REQUESTED */
.mousefollower {
    display: none !important;
    opacity: 0 !important;
}

/* Container to keep it centered and handle overflow */
.footer-hero-container {
    width: 100%;
    padding: 0.5rem 0; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: transparent; 
}
/* Base text styling (Outlined text) */
.footer-hero-text {
    
    font-size: clamp(3rem, 14.8vw, 12rem); 
    letter-spacing: -0.01em; 
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif !important;
    color: transparent; /* Hide normal fill */
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3); /* The white outline */
    line-height: 1.1;
    display: inline-block;
    cursor: none; /* Hide default cursor */
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    -webkit-user-select: none;
    user-select: none;
    position: relative;
    animation: textPulse 3s infinite ease-in-out; 
}

/* Subtle breathing animation */
@keyframes textPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Spotlight Glowing Mask Effect (The colorful inner part) */
.footer-hero-text::before {
    content: "YOURADSMATE"; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    
    /* Radial gradient mapping to Javascript cursor coordinates using brand ORANGE */
    background: radial-gradient(circle 120px at var(--glow-x, -500px) var(--glow-y, -500px), #FF6B35 0%, #e55a27 70%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-stroke: 0px;
    pointer-events: none; 
    
    /* Colored neon drop shadow */
    filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.7));
    transition: background 0.1s ease; 
}

/* Mobile & Tablet Specific Adjustments */
@media (max-width: 768px) {
    .footer-hero-text {
        font-size: clamp(2.5rem, 13vw, 4rem); 
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4); 
    }
}

/* --- SMALL LOGO TEXT GLOW --- */
.footer-logo .logo-text {
    position: relative; 
    display: inline-block;
    cursor: none;
    -webkit-user-select: none;
    user-select: none;
}

.footer-logo .logo-text::before {
    content: "YourAdsMate"; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    
    /* White radial gradient spotlight over the orange text */
    background: radial-gradient(circle 60px at var(--glow-x, -500px) var(--glow-y, -500px), rgba(255,255,255,1) 0%, rgba(255,255,255,0.2) 60%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    pointer-events: none;
    
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
    transition: background 0.1s ease; 
}

@media (max-width: 768px) { .footer-legal a { white-space: nowrap; } }

